home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 12 / Cream of the Crop 12 (Part II) / Cream of the Crop 12 (Part II).iso / OS2 / VD08BIN.ZIP / usr / include / pm / IBAction.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-02-13  |  1.2 KB  |  49 lines

  1. /* -------------------------------------------------------------------
  2.  
  3.     Project: 
  4.  
  5.     Objective-C interface file for the class IBAction
  6.  
  7.     COPYRIGHT (C), 1995, Thomas Baier
  8.     ALL RIGHTS RESERVED.
  9.  
  10.     Date:                Rev:
  11.     1995-Aug-28            ___
  12.  
  13.  */
  14.  
  15. #ifndef _IBACTION_H_
  16. #define _IBACTION_H_
  17.  
  18. /*====================================================================
  19.                      Interface of class IBAction                      
  20. ====================================================================*/
  21. #include <pm/IBOutlet.h>
  22.  
  23. @interface IBAction : IBOutlet
  24. {
  25.   char *targetAction;
  26. }
  27.  
  28. /* -------------------------- Initialize -------------------------- */
  29. -init;
  30.  
  31. /* ----------------------------- Free ----------------------------- */
  32. -free;
  33.  
  34. /* ----------- Methods for access to Instance Variables ----------- */
  35. -(char *) targetAction;
  36. -setTargetAction: (char *) anAction;
  37.  
  38. /* ------------------------ Public methods ------------------------ */
  39.  
  40. /* ----------------------- Private methods ------------------------ */
  41.  
  42. /* ---------------------- Archiving methods ----------------------- */
  43. -read: (TypedStream *) aStream;
  44. -write: (TypedStream *) aStream;
  45.  
  46. @end
  47. #endif
  48.  
  49.